home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funarghe.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  502 b   |  24 lines

  1. /*
  2. \funcref{fun\_arg\_head}{void fun\_arg\_head ()}
  3.     {}
  4.     {}
  5.     {setstring()}
  6.     {fun\_arg\_tail(), fun\_cmd\_tail()}
  7.     {funarghe.c}
  8.     {
  9.  
  10.         This function is called when an {\em op\_arg\_head} opcode is read in
  11.         the binary makefile. The {\em arghead} variable is set to a duplicate
  12.         of the string in the last pushed variable. The last pushed variable is
  13.         then discarded.
  14.  
  15.     }
  16. */
  17.  
  18. #include "icm-exec.h"
  19.  
  20. void fun_arg_head ()
  21. {
  22.     arghead = setstring (arghead);
  23. }
  24.